home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 September / Macworld (1998-09).dmg / Shareware World / Info / For Developers / MacZoop 1.8.3 / Projects / Manifest.readme < prev   
Encoding:
Text File  |  1998-07-10  |  2.8 KB  |  138 lines  |  [TEXT/CWIE]

  1. // Sources required to build demo application (if you are unable to open the project file)
  2.  
  3. /*
  4.  
  5.  
  6. PPC Libraries:
  7.  
  8. InterfaceLib
  9. MWCRuntime.Lib
  10. DragLib
  11. QuickTimeLib
  12. MathLib
  13. NavigationLib            §<optional>
  14.  
  15. --- OR --- 68k Libraries:
  16.  
  17. CPlusPlus.lib
  18. MacOS.lib
  19. DragLib
  20. Navigation.o            §<optional>
  21.  
  22. Sources (both 68k AND PPC):
  23.  
  24. ------***  required classes ***-------
  25.  
  26. ZStartUp.cpp
  27. ZArray.cpp
  28. ZApplication.cpp
  29. ZClipboard.cpp
  30. ZCommander.cpp
  31. ZComrade.cpp
  32. ZErrors.cpp
  33. ZEventHandler.cpp
  34. ZGrafState.cpp
  35. ZMenuBar.cpp
  36. ZObject.cpp
  37. ZPrinter.cpp
  38. ZWindow.cpp
  39. ZWindowManager.cpp
  40. CursorUtilities.c
  41. TextStyleUtils.h
  42.  
  43. ------*** additional classes ***-----
  44.  
  45. ZAdvancedDialog.cpp
  46. ZExtraDialogItems.cpp
  47. ZDialog.cpp
  48. ZFile.cpp
  49. ZFolderScanner.cpp
  50. ZHexEditor.cpp
  51. ZGWorld.cpp
  52. ZGWorldWindow.cpp
  53. ZInspectorWindow.cpp
  54. ZPictWindow.cpp
  55. ZPrefsFile.cpp
  56. ZProgress.cpp
  57. ZResourceFile.cpp
  58. ZScroller.cpp
  59. ZTestInspector.cpp
  60. ZTextWindow.cpp
  61. ZUndoIPTask.cpp
  62. ZUndoTask.cpp
  63. FileMgrUtils.c
  64. PixMapUtils.c
  65.  
  66. -----*** demo application classes ***----
  67.  
  68. ShowOffStartUp.cpp
  69. ZShowOffApplication.cpp
  70. ZSortTestWindow.cpp
  71.  
  72. Resource files:
  73.  
  74. MAMacZapp.π.rsrc
  75. HexEditor.rsrc
  76. Z_Stdprefsdemo.rsrc
  77.  
  78. ************************************************************************************************
  79. // Sources required to build bare minimum application:
  80.  
  81. PPC Libraries:
  82.  
  83. InterfaceLib
  84. MWCRuntime.Lib
  85. DragLib
  86.  
  87. ---- OR ----  68k Libraries:
  88.  
  89. CPlusPlus.lib
  90. MacOS.lib
  91.  
  92. Sources (both 68k AND PPC):
  93.  
  94. ZStartUp.cpp
  95. ZArray.cpp
  96. ZApplication.cpp
  97. ZClipboard.cpp
  98. ZCommander.cpp
  99. ZComrade.cpp
  100. ZErrors.cpp
  101. ZEventHandler.cpp
  102. ZGrafState.cpp
  103. ZMenuBar.cpp
  104. ZObject.cpp
  105. ZPrinter.cpp
  106. ZWindow.cpp
  107. ZWindowManager.cpp
  108. CursorUtilities.c
  109.  
  110. Resource files:
  111.  
  112. MacZoop.π.rsrc
  113.  
  114.  
  115. ************************************************************************************************
  116.  
  117. Note that all of the compiler flags are in the a file called ProjectSettings.h. This
  118. file is your opportunity to set these flags for your particular project. The supplied file has
  119. the standard default settings, and most applications will use them as provided. If you need
  120. something different, edit the file as needed and recompile. Each project you make using MacZoop
  121. could use a different copy of this file so that you don't have to change any of the standard
  122. headers or code files at all. 
  123.  
  124. ************************************************************************************************
  125.  
  126. If you wish to use streams in your project, you need to additionally include the following files:
  127.  
  128. ZStream.cpp
  129. ZHandleStream.cpp
  130. ZFileStream.cpp
  131. ZClassRegistry.cpp
  132.  
  133. You also need to turn on the compiler flag _MACZOOP_STREAMS. This flag is NOT part of Project
  134. Settings.h because it needs to be visible to a larger extent of the framework, thus it is
  135. currently part of MacZoop.h. By default, streaming support is OFF for easier migration from 1.7+.
  136.  
  137.  
  138. (updated for MacZoop 1.8.2, June 1998)